home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Development Kits / MPW etc / MPW-GM / MPW / Examples / PPCExamples / CExamples / NotPPC / NotPPC.make < prev    next >
Encoding:
Text File  |  1998-12-03  |  787 b   |  28 lines  |  [TEXT/MPS ]

  1. #   File:       NotPPC.make
  2. #   Target:     NotPPC
  3. #   Sources:    NotPPC.c NotPPC.r
  4. #   Created:    Thursday, May 27, 1993 9:48:50
  5. #   Modified:   Thursday, January 6, 1994 3:09:52
  6.  
  7.  
  8. OBJECTS = NotPPC.c.o
  9.  
  10.  
  11. NotPPC ƒƒ NotPPC.make NotPPC.r
  12.     Rez NotPPC.r -append -d SystemSevenOrLater=1 -o NotPPC
  13.  
  14. NotPPC ƒƒ NotPPC.make {OBJECTS}
  15. #
  16. # Note that the Link step is merging the segments 'Main' and '%A5Init'
  17. # into one called 'PPCOnly'.  You might be able to use 'PPCOnly' to 
  18. # differentiate between a Power Macintosh only application versus
  19. # a FAT application (such as from an installer).
  20. #
  21.     Link -t APPL -c '????' -sg PPCOnly=Main,%A5Init ∂
  22.         {OBJECTS} ∂
  23.         "{Libraries}"MacRuntime.o ∂
  24.         "{Libraries}"Interface.o ∂
  25.         -o NotPPC
  26.         
  27. NotPPC.c.o ƒ NotPPC.make NotPPC.c
  28.      SC -proto strict  NotPPC.c